/* Listes responsives */
ul {
    margin: 1rem 0rem rem 0;
    padding-left: 2rem;
}

ul li {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 0.5rem;
    position: relative;
}

ul li::marker {
    color: #667eea;
}

/* Liste de définition */
dl {
    margin: 0.3rem 0;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

dt {
    font-weight: 700;
    color: #2c3e50;
    font-size: clamp(1.2rem, 2.5vw, 1.3rem);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

dt:first-child {
    margin-top: 0;
}

dd {
    font-weight: 600;
    margin-bottom: 0.5rem;
    /* Réduit l'espace en bas */
    margin-top: 0.2rem;
    /* Réduit aussi l'espace en haut si nécessaire */
    margin-left: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #555;
    border-left: 3px solid #667eea;
    padding-left: 0.8rem;
    line-height: 1.1;
    /* Réduit l'interligne */
}